home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / h2ph < prev    next >
Text File  |  2009-10-01  |  28KB  |  943 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use strict;
  6.  
  7. use Config;
  8. use File::Path qw(mkpath);
  9. use Getopt::Std;
  10.  
  11. # Make sure read permissions for all are set:
  12. if (defined umask && (umask() & 0444)) {
  13.     umask (umask() & ~0444);
  14. }
  15.  
  16. getopts('Dd:rlhaQe');
  17. use vars qw($opt_D $opt_d $opt_r $opt_l $opt_h $opt_a $opt_Q $opt_e);
  18. die "-r and -a options are mutually exclusive\n" if ($opt_r and $opt_a);
  19. my @inc_dirs = inc_dirs() if $opt_a;
  20.  
  21. my $Exit = 0;
  22.  
  23. my $Dest_dir = $opt_d || $Config{installsitearch};
  24. die "Destination directory $Dest_dir doesn't exist or isn't a directory\n"
  25.     unless -d $Dest_dir;
  26.  
  27. my @isatype = qw(
  28.     char    uchar    u_char
  29.     short    ushort    u_short
  30.     int    uint    u_int
  31.     long    ulong    u_long
  32.     FILE    key_t    caddr_t
  33.     float    double    size_t
  34. );
  35.  
  36. my %isatype;
  37. @isatype{@isatype} = (1) x @isatype;
  38. my $inif = 0;
  39. my %Is_converted;
  40. my %bad_file = ();
  41.  
  42. @ARGV = ('-') unless @ARGV;
  43.  
  44. build_preamble_if_necessary();
  45.  
  46. sub reindent($) {
  47.     my($text) = shift;
  48.     $text =~ s/\n/\n    /g;
  49.     $text =~ s/        /\t/g;
  50.     $text;
  51. }
  52.  
  53. my ($t, $tab, %curargs, $new, $eval_index, $dir, $name, $args, $outfile);
  54. my ($incl, $incl_type, $incl_quote, $next);
  55. while (defined (my $file = next_file())) {
  56.     if (-l $file and -d $file) {
  57.         link_if_possible($file) if ($opt_l);
  58.         next;
  59.     }
  60.  
  61.     # Recover from header files with unbalanced cpp directives
  62.     $t = '';
  63.     $tab = 0;
  64.  
  65.     # $eval_index goes into ``#line'' directives, to help locate syntax errors:
  66.     $eval_index = 1;
  67.  
  68.     if ($file eq '-') {
  69.     open(IN, "-");
  70.     open(OUT, ">-");
  71.     } else {
  72.     ($outfile = $file) =~ s/\.h$/.ph/ || next;
  73.     print "$file -> $outfile\n" unless $opt_Q;
  74.     if ($file =~ m|^(.*)/|) {
  75.         $dir = $1;
  76.         mkpath "$Dest_dir/$dir";
  77.     }
  78.  
  79.     if ($opt_a) { # automagic mode:  locate header file in @inc_dirs
  80.         foreach (@inc_dirs) {
  81.         chdir $_;
  82.         last if -f $file;
  83.         }
  84.     }
  85.  
  86.     open(IN,"$file") || (($Exit = 1),(warn "Can't open $file: $!\n"),next);
  87.     open(OUT,">$Dest_dir/$outfile") || die "Can't create $outfile: $!\n";
  88.     }
  89.  
  90.     print OUT
  91.         "require '_h2ph_pre.ph';\n\n",
  92.         "no warnings qw(redefine misc);\n\n";
  93.  
  94.     while (defined (local $_ = next_line($file))) {
  95.     if (s/^\s*\#\s*//) {
  96.         if (s/^define\s+(\w+)//) {
  97.         $name = $1;
  98.         $new = '';
  99.         s/\s+$//;
  100.         s/\(\w+\s*\(\*\)\s*\(\w*\)\)\s*(-?\d+)/$1/; # (int (*)(foo_t))0
  101.         if (s/^\(([\w,\s]*)\)//) {
  102.             $args = $1;
  103.             my $proto = '() ';
  104.             if ($args ne '') {
  105.             $proto = '';
  106.             foreach my $arg (split(/,\s*/,$args)) {
  107.                 $arg =~ s/^\s*([^\s].*[^\s])\s*$/$1/;
  108.                 $curargs{$arg} = 1;
  109.             }
  110.             $args =~ s/\b(\w)/\$$1/g;
  111.             $args = "my($args) = \@_;\n$t    ";
  112.             }
  113.             s/^\s+//;
  114.             expr();
  115.             $new =~ s/(["\\])/\\$1/g;       #"]);
  116.           EMIT:
  117.             $new = reindent($new);
  118.             $args = reindent($args);
  119.             if ($t ne '') {
  120.             $new =~ s/(['\\])/\\$1/g;   #']);
  121.             if ($opt_h) {
  122.                 print OUT $t,
  123.                             "eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
  124.                             $eval_index++;
  125.             } else {
  126.                 print OUT $t,
  127.                             "eval 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
  128.             }
  129.             } else {
  130.                       print OUT "unless(defined(\&$name)) {\n    sub $name $proto\{\n\t${args}eval q($new);\n    }\n}\n";
  131.             }
  132.             %curargs = ();
  133.         } else {
  134.             s/^\s+//;
  135.             expr();
  136.             $new = 1 if $new eq '';
  137.             $new = reindent($new);
  138.             $args = reindent($args);
  139.             if ($t ne '') {
  140.             $new =~ s/(['\\])/\\$1/g;        #']);
  141.  
  142.             if ($opt_h) {
  143.                 print OUT $t,"eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name () {",$new,";}' unless defined(\&$name);\n";
  144.                 $eval_index++;
  145.             } else {
  146.                 print OUT $t,"eval 'sub $name () {",$new,";}' unless defined(\&$name);\n";
  147.             }
  148.             } else {
  149.                 # Shunt around such directives as `#define FOO FOO':
  150.                 next if " \&$name" eq $new;
  151.  
  152.                       print OUT $t,"unless(defined(\&$name)) {\n    sub $name () {\t",$new,";}\n}\n";
  153.             }
  154.         }
  155.         } elsif (/^(include|import|include_next)\s*([<\"])(.*)[>\"]/) {
  156.                 $incl_type = $1;
  157.                 $incl_quote = $2;
  158.                 $incl = $3;
  159.                 if (($incl_type eq 'include_next') ||
  160.                     ($opt_e && exists($bad_file{$incl}))) {
  161.                     $incl =~ s/\.h$/.ph/;
  162.         print OUT ($t,
  163.                "eval {\n");
  164.                 $tab += 4;
  165.                 $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  166.                     print OUT ($t, "my(\@REM);\n");
  167.                     if ($incl_type eq 'include_next') {
  168.         print OUT ($t,
  169.                "my(\%INCD) = map { \$INC{\$_} => 1 } ",
  170.                        "(grep { \$_ eq \"$incl\" } ",
  171.                                    "keys(\%INC));\n");
  172.         print OUT ($t,
  173.                        "\@REM = map { \"\$_/$incl\" } ",
  174.                "(grep { not exists(\$INCD{\"\$_/$incl\"})",
  175.                        " and -f \"\$_/$incl\" } \@INC);\n");
  176.                     } else {
  177.                         print OUT ($t,
  178.                                    "\@REM = map { \"\$_/$incl\" } ",
  179.                                    "(grep {-r \"\$_/$incl\" } \@INC);\n");
  180.                     }
  181.         print OUT ($t,
  182.                "require \"\$REM[0]\" if \@REM;\n");
  183.                 $tab -= 4;
  184.                 $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  185.                 print OUT ($t,
  186.                "};\n");
  187.         print OUT ($t,
  188.                "warn(\$\@) if \$\@;\n");
  189.                 } else {
  190.                     $incl =~ s/\.h$/.ph/;
  191.                     # copy the prefix in the quote syntax (#include "x.h") case
  192.                     if ($incl !~ m|/| && $incl_quote eq q{"} && $file =~ m|^(.*)/|) {
  193.                         $incl = "$1/$incl";
  194.                     }
  195.             print OUT $t,"require '$incl';\n";
  196.                 }
  197.         } elsif (/^ifdef\s+(\w+)/) {
  198.         print OUT $t,"if(defined(&$1)) {\n";
  199.         $tab += 4;
  200.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  201.         } elsif (/^ifndef\s+(\w+)/) {
  202.         print OUT $t,"unless(defined(&$1)) {\n";
  203.         $tab += 4;
  204.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  205.         } elsif (s/^if\s+//) {
  206.         $new = '';
  207.         $inif = 1;
  208.         expr();
  209.         $inif = 0;
  210.         print OUT $t,"if($new) {\n";
  211.         $tab += 4;
  212.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  213.         } elsif (s/^elif\s+//) {
  214.         $new = '';
  215.         $inif = 1;
  216.         expr();
  217.         $inif = 0;
  218.         $tab -= 4;
  219.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  220.         print OUT $t,"}\n elsif($new) {\n";
  221.         $tab += 4;
  222.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  223.         } elsif (/^else/) {
  224.         $tab -= 4;
  225.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  226.         print OUT $t,"} else {\n";
  227.         $tab += 4;
  228.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  229.         } elsif (/^endif/) {
  230.         $tab -= 4;
  231.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  232.         print OUT $t,"}\n";
  233.         } elsif(/^undef\s+(\w+)/) {
  234.         print OUT $t, "undef(&$1) if defined(&$1);\n";
  235.         } elsif(/^error\s+(".*")/) {
  236.         print OUT $t, "die($1);\n";
  237.         } elsif(/^error\s+(.*)/) {
  238.         print OUT $t, "die(\"", quotemeta($1), "\");\n";
  239.         } elsif(/^warning\s+(.*)/) {
  240.         print OUT $t, "warn(\"", quotemeta($1), "\");\n";
  241.         } elsif(/^ident\s+(.*)/) {
  242.         print OUT $t, "# $1\n";
  243.         }
  244.     } elsif (/^\s*(typedef\s*)?enum\s*(\s+[a-zA-Z_]\w*\s*)?/) { # { for vi
  245.         until(/\{[^}]*\}.*;/ || /;/) {
  246.         last unless defined ($next = next_line($file));
  247.         chomp $next;
  248.         # drop "#define FOO FOO" in enums
  249.         $next =~ s/^\s*#\s*define\s+(\w+)\s+\1\s*$//;
  250.         # #defines in enums (aliases)
  251.         $next =~ s/^\s*#\s*define\s+(\w+)\s+(\w+)\s*$/$1 = $2,/;
  252.         $_ .= $next;
  253.         print OUT "# $next\n" if $opt_D;
  254.         }
  255.         s/#\s*if.*?#\s*endif//g; # drop #ifdefs
  256.         s@/\*.*?\*/@@g;
  257.         s/\s+/ /g;
  258.         next unless /^\s?(typedef\s?)?enum\s?([a-zA-Z_]\w*)?\s?\{(.*)\}\s?([a-zA-Z_]\w*)?\s?;/;
  259.         (my $enum_subs = $3) =~ s/\s//g;
  260.         my @enum_subs = split(/,/, $enum_subs);
  261.         my $enum_val = -1;
  262.         foreach my $enum (@enum_subs) {
  263.         my ($enum_name, $enum_value) = $enum =~ /^([a-zA-Z_]\w*)(=.+)?$/;
  264.         $enum_name or next;
  265.         $enum_value =~ s/^=//;
  266.         $enum_val = (length($enum_value) ? $enum_value : $enum_val + 1);
  267.         if ($opt_h) {
  268.             print OUT ($t,
  269.                    "eval(\"\\n#line $eval_index $outfile\\n",
  270.                    "sub $enum_name () \{ $enum_val; \}\") ",
  271.                    "unless defined(\&$enum_name);\n");
  272.             ++ $eval_index;
  273.         } else {
  274.             print OUT ($t,
  275.                    "eval(\"sub $enum_name () \{ $enum_val; \}\") ",
  276.                    "unless defined(\&$enum_name);\n");
  277.         }
  278.         }
  279.     } elsif (/^(?:__extension__\s+)?(?:extern|static)\s+(?:__)?inline(?:__)?\s+/
  280.         and !/;\s*$/ and !/{\s*}\s*$/)
  281.     { # { for vi
  282.         # This is a hack to parse the inline functions in the glibc headers.
  283.         # Warning: massive kludge ahead. We suppose inline functions
  284.         # are mainly constructed like macros.
  285.         while (1) {
  286.         last unless defined ($next = next_line($file));
  287.         chomp $next;
  288.         undef $_, last if $next =~ /__THROW\s*;/
  289.                    or $next =~ /^(__extension__|extern|static)\b/;
  290.         $_ .= " $next";
  291.         print OUT "# $next\n" if $opt_D;
  292.         last if $next =~ /^}|^{.*}\s*$/;
  293.         }
  294.         next if not defined; # because it's only a prototype
  295.         s/\b(__extension__|extern|static|(?:__)?inline(?:__)?)\b//g;
  296.         # violently drop #ifdefs
  297.         s/#\s*if.*?#\s*endif//g
  298.         and print OUT "# some #ifdef were dropped here -- fill in the blanks\n";
  299.         if (s/^(?:\w|\s|\*)*\s(\w+)\s*//) {
  300.         $name = $1;
  301.         } else {
  302.         warn "name not found"; next; # shouldn't occur...
  303.         }
  304.         my @args;
  305.         if (s/^\(([^()]*)\)\s*(\w+\s*)*//) {
  306.         for my $arg (split /,/, $1) {
  307.             if ($arg =~ /(\w+)\s*$/) {
  308.             $curargs{$1} = 1;
  309.             push @args, $1;
  310.             }
  311.         }
  312.         }
  313.         $args = (
  314.         @args
  315.         ? "my(" . (join ',', map "\$$_", @args) . ") = \@_;\n$t    "
  316.         : ""
  317.         );
  318.         my $proto = @args ? '' : '() ';
  319.         $new = '';
  320.         s/\breturn\b//g; # "return" doesn't occur in macros usually...
  321.         expr();
  322.         # try to find and perlify local C variables
  323.         our @local_variables = (); # needs to be a our(): (?{...}) bug workaround
  324.         {
  325.         use re "eval";
  326.         my $typelist = join '|', keys %isatype;
  327.         $new =~ s['
  328.           (?:(?:__)?const(?:__)?\s+)?
  329.           (?:(?:un)?signed\s+)?
  330.           (?:long\s+)?
  331.           (?:$typelist)\s+
  332.           (\w+)
  333.           (?{ push @local_variables, $1 })
  334.           ']
  335.          [my \$$1]gx;
  336.         $new =~ s['
  337.           (?:(?:__)?const(?:__)?\s+)?
  338.           (?:(?:un)?signed\s+)?
  339.           (?:long\s+)?
  340.           (?:$typelist)\s+
  341.           ' \s+ &(\w+) \s* ;
  342.           (?{ push @local_variables, $1 })
  343.           ]
  344.          [my \$$1;]gx;
  345.          }
  346.         $new =~ s/&$_\b/\$$_/g for @local_variables;
  347.         $new =~ s/(["\\])/\\$1/g;       #"]);
  348.         # now that's almost like a macro (we hope)
  349.         goto EMIT;
  350.     }
  351.     }
  352.     $Is_converted{$file} = 1;
  353.     if ($opt_e && exists($bad_file{$file})) {
  354.         unlink($Dest_dir . '/' . $outfile);
  355.         $next = '';
  356.     } else {
  357.         print OUT "1;\n";
  358.     queue_includes_from($file) if $opt_a;
  359.     }
  360. }
  361.  
  362. if ($opt_e && (scalar(keys %bad_file) > 0)) {
  363.     warn "Was unable to convert the following files:\n";
  364.     warn "\t" . join("\n\t",sort(keys %bad_file)) . "\n";
  365. }
  366.  
  367. exit $Exit;
  368.  
  369. sub expr {
  370.     $new = '"(assembly code)"' and return if /\b__asm__\b/; # freak out.
  371.     my $joined_args;
  372.     if(keys(%curargs)) {
  373.     $joined_args = join('|', keys(%curargs));
  374.     }
  375.     while ($_ ne '') {
  376.     s/^\&\&// && do { $new .= " &&"; next;}; # handle && operator
  377.     s/^\&([\(a-z\)]+)/$1/i;    # hack for things that take the address of
  378.     s/^(\s+)//        && do {$new .= ' '; next;};
  379.     s/^0X([0-9A-F]+)[UL]*//i
  380.         && do {my $hex = $1;
  381.            $hex =~ s/^0+//;
  382.            if (length $hex > 8 && !$Config{use64bitint}) {
  383.                # Croak if nv_preserves_uv_bits < 64 ?
  384.                $new .=         hex(substr($hex, -8)) +
  385.                    2**32 * hex(substr($hex,  0, -8));
  386.                # The above will produce "errorneus" code
  387.                # if the hex constant was e.g. inside UINT64_C
  388.                # macro, but then again, h2ph is an approximation.
  389.            } else {
  390.                $new .= lc("0x$hex");
  391.            }
  392.            next;};
  393.     s/^(-?\d+\.\d+E[-+]?\d+)[FL]?//i    && do {$new .= $1; next;};
  394.     s/^(\d+)\s*[LU]*//i    && do {$new .= $1; next;};
  395.     s/^("(\\"|[^"])*")//    && do {$new .= $1; next;};
  396.     s/^'((\\"|[^"])*)'//    && do {
  397.         if ($curargs{$1}) {
  398.         $new .= "ord('\$$1')";
  399.         } else {
  400.         $new .= "ord('$1')";
  401.         }
  402.         next;
  403.     };
  404.         # replace "sizeof(foo)" with "{foo}"
  405.         # also, remove * (C dereference operator) to avoid perl syntax
  406.         # problems.  Where the %sizeof array comes from is anyone's
  407.         # guess (c2ph?), but this at least avoids fatal syntax errors.
  408.         # Behavior is undefined if sizeof() delimiters are unbalanced.
  409.         # This code was modified to able to handle constructs like this:
  410.         #   sizeof(*(p)), which appear in the HP-UX 10.01 header files.
  411.         s/^sizeof\s*\(// && do {
  412.             $new .= '$sizeof';
  413.             my $lvl = 1;  # already saw one open paren
  414.             # tack { on the front, and skip it in the loop
  415.             $_ = "{" . "$_";
  416.             my $index = 1;
  417.             # find balanced closing paren
  418.             while ($index <= length($_) && $lvl > 0) {
  419.                 $lvl++ if substr($_, $index, 1) eq "(";
  420.                 $lvl-- if substr($_, $index, 1) eq ")";
  421.                 $index++;
  422.             }
  423.             # tack } on the end, replacing )
  424.             substr($_, $index - 1, 1) = "}";
  425.             # remove pesky * operators within the sizeof argument
  426.             substr($_, 0, $index - 1) =~ s/\*//g;
  427.             next;
  428.         };
  429.     # Eliminate typedefs
  430.     /\(([\w\s]+)[\*\s]*\)\s*[\w\(]/ && do {
  431.         my $doit = 1;
  432.         foreach (split /\s+/, $1) {  # Make sure all the words are types,
  433.             unless($isatype{$_} or $_ eq 'struct' or $_ eq 'union'){
  434.             $doit = 0;
  435.             last;
  436.         }
  437.         }
  438.         if( $doit ){
  439.         s/\([\w\s]+[\*\s]*\)// && next;      # then eliminate them.
  440.         }
  441.     };
  442.     # struct/union member, including arrays:
  443.     s/^([_A-Z]\w*(\[[^\]]+\])?((\.|->)[_A-Z]\w*(\[[^\]]+\])?)+)//i && do {
  444.         my $id = $1;
  445.         $id =~ s/(\.|(->))([^\.\-]*)/->\{$3\}/g;
  446.         $id =~ s/\b([^\$])($joined_args)/$1\$$2/g if length($joined_args);
  447.         while($id =~ /\[\s*([^\$\&\d\]]+)\]/) {
  448.         my($index) = $1;
  449.         $index =~ s/\s//g;
  450.         if(exists($curargs{$index})) {
  451.             $index = "\$$index";
  452.         } else {
  453.             $index = "&$index";
  454.         }
  455.         $id =~ s/\[\s*([^\$\&\d\]]+)\]/[$index]/;
  456.         }
  457.         $new .= " (\$$id)";
  458.     };
  459.     s/^([_a-zA-Z]\w*)//    && do {
  460.         my $id = $1;
  461.         if ($id eq 'struct' || $id eq 'union') {
  462.         s/^\s+(\w+)//;
  463.         $id .= ' ' . $1;
  464.         $isatype{$id} = 1;
  465.         } elsif ($id =~ /^((un)?signed)|(long)|(short)$/) {
  466.         while (s/^\s+(\w+)//) { $id .= ' ' . $1; }
  467.         $isatype{$id} = 1;
  468.         }
  469.         if ($curargs{$id}) {
  470.         $new .= "\$$id";
  471.         $new .= '->' if /^[\[\{]/;
  472.         } elsif ($id eq 'defined') {
  473.         $new .= 'defined';
  474.         } elsif (/^\s*\(/) {
  475.         s/^\s*\((\w),/("$1",/ if $id =~ /^_IO[WR]*$/i;    # cheat
  476.         $new .= " &$id";
  477.         } elsif ($isatype{$id}) {
  478.         if ($new =~ /{\s*$/) {
  479.             $new .= "'$id'";
  480.         } elsif ($new =~ /\(\s*$/ && /^[\s*]*\)/) {
  481.             $new =~ s/\(\s*$//;
  482.             s/^[\s*]*\)//;
  483.         } else {
  484.             $new .= q(').$id.q(');
  485.         }
  486.         } else {
  487.         if ($inif && $new !~ /defined\s*\($/) {
  488.             $new .= '(defined(&' . $id . ') ? &' . $id . ' : undef)';
  489.         } elsif (/^\[/) {
  490.             $new .= " \$$id";
  491.         } else {
  492.             $new .= ' &' . $id;
  493.         }
  494.         }
  495.         next;
  496.     };
  497.     s/^(.)// && do { if ($1 ne '#') { $new .= $1; } next;};
  498.     }
  499. }
  500.  
  501.  
  502. sub next_line
  503. {
  504.     my $file = shift;
  505.     my ($in, $out);
  506.     my $pre_sub_tri_graphs = 1;
  507.  
  508.     READ: while (not eof IN) {
  509.         $in  .= <IN>;
  510.         chomp $in;
  511.         next unless length $in;
  512.  
  513.         while (length $in) {
  514.             if ($pre_sub_tri_graphs) {
  515.                 # Preprocess all tri-graphs
  516.                 # including things stuck in quoted string constants.
  517.                 $in =~ s/\?\?=/#/g;                         # | ??=|  #|
  518.                 $in =~ s/\?\?\!/|/g;                        # | ??!|  ||
  519.                 $in =~ s/\?\?'/^/g;                         # | ??'|  ^|
  520.                 $in =~ s/\?\?\(/[/g;                        # | ??(|  [|
  521.                 $in =~ s/\?\?\)/]/g;                        # | ??)|  ]|
  522.                 $in =~ s/\?\?\-/~/g;                        # | ??-|  ~|
  523.                 $in =~ s/\?\?\//\\/g;                       # | ??/|  \|
  524.                 $in =~ s/\?\?</{/g;                         # | ??<|  {|
  525.                 $in =~ s/\?\?>/}/g;                         # | ??>|  }|
  526.             }
  527.         if ($in =~ /^\#ifdef __LANGUAGE_PASCAL__/) {
  528.         # Tru64 disassembler.h evilness: mixed C and Pascal.
  529.         while (<IN>) {
  530.             last if /^\#endif/;
  531.         }
  532.         $in = "";
  533.         next READ;
  534.         }
  535.         if ($in =~ /^extern inline / && # Inlined assembler.
  536.         $^O eq 'linux' && $file =~ m!(?:^|/)asm/[^/]+\.h$!) {
  537.         while (<IN>) {
  538.             last if /^}/;
  539.         }
  540.         $in = "";
  541.         next READ;
  542.         }
  543.             if ($in =~ s/\\$//) {                           # \-newline
  544.                 $out    .= ' ';
  545.                 next READ;
  546.             } elsif ($in =~ s/^([^"'\\\/]+)//) {            # Passthrough
  547.                 $out    .= $1;
  548.             } elsif ($in =~ s/^(\\.)//) {                   # \...
  549.                 $out    .= $1;
  550.             } elsif ($in =~ /^'/) {                         # '...
  551.                 if ($in =~ s/^('(\\.|[^'\\])*')//) {
  552.                     $out    .= $1;
  553.                 } else {
  554.                     next READ;
  555.                 }
  556.             } elsif ($in =~ /^"/) {                         # "...
  557.                 if ($in =~ s/^("(\\.|[^"\\])*")//) {
  558.                     $out    .= $1;
  559.                 } else {
  560.                     next READ;
  561.                 }
  562.             } elsif ($in =~ s/^\/\/.*//) {                  # //...
  563.                 # fall through
  564.             } elsif ($in =~ m/^\/\*/) {                     # /*...
  565.                 # C comment removal adapted from perlfaq6:
  566.                 if ($in =~ s/^\/\*[^*]*\*+([^\/*][^*]*\*+)*\///) {
  567.                     $out    .= ' ';
  568.                 } else {                                    # Incomplete /* */
  569.                     next READ;
  570.                 }
  571.             } elsif ($in =~ s/^(\/)//) {                    # /...
  572.                 $out    .= $1;
  573.             } elsif ($in =~ s/^([^\'\"\\\/]+)//) {
  574.                 $out    .= $1;
  575.             } elsif ($^O eq 'linux' &&
  576.                      $file =~ m!(?:^|/)linux/byteorder/pdp_endian\.h$! &&
  577.                      $in   =~ s!\'T KNOW!!) {
  578.                 $out    =~ s!I DON$!I_DO_NOT_KNOW!;
  579.             } else {
  580.                 if ($opt_e) {
  581.                     warn "Cannot parse $file:\n$in\n";
  582.                     $bad_file{$file} = 1;
  583.                     $in = '';
  584.                     $out = undef;
  585.                     last READ;
  586.                 } else {
  587.         die "Cannot parse:\n$in\n";
  588.                 }
  589.             }
  590.         }
  591.  
  592.         last READ if $out =~ /\S/;
  593.     }
  594.  
  595.     return $out;
  596. }
  597.  
  598.  
  599. # Handle recursive subdirectories without getting a grotesquely big stack.
  600. # Could this be implemented using File::Find?
  601. sub next_file
  602. {
  603.     my $file;
  604.  
  605.     while (@ARGV) {
  606.         $file = shift @ARGV;
  607.  
  608.         if ($file eq '-' or -f $file or -l $file) {
  609.             return $file;
  610.         } elsif (-d $file) {
  611.             if ($opt_r) {
  612.                 expand_glob($file);
  613.             } else {
  614.                 print STDERR "Skipping directory `$file'\n";
  615.             }
  616.         } elsif ($opt_a) {
  617.             return $file;
  618.         } else {
  619.             print STDERR "Skipping `$file':  not a file or directory\n";
  620.         }
  621.     }
  622.  
  623.     return undef;
  624. }
  625.  
  626.  
  627. # Put all the files in $directory into @ARGV for processing.
  628. sub expand_glob
  629. {
  630.     my ($directory)  = @_;
  631.  
  632.     $directory =~ s:/$::;
  633.  
  634.     opendir DIR, $directory;
  635.         foreach (readdir DIR) {
  636.             next if ($_ eq '.' or $_ eq '..');
  637.  
  638.             # expand_glob() is going to be called until $ARGV[0] isn't a
  639.             # directory; so push directories, and unshift everything else.
  640.             if (-d "$directory/$_") { push    @ARGV, "$directory/$_" }
  641.             else                    { unshift @ARGV, "$directory/$_" }
  642.         }
  643.     closedir DIR;
  644. }
  645.  
  646.  
  647. # Given $file, a symbolic link to a directory in the C include directory,
  648. # make an equivalent symbolic link in $Dest_dir, if we can figure out how.
  649. # Otherwise, just duplicate the file or directory.
  650. sub link_if_possible
  651. {
  652.     my ($dirlink)  = @_;
  653.     my $target  = eval 'readlink($dirlink)';
  654.  
  655.     if ($target =~ m:^\.\./: or $target =~ m:^/:) {
  656.         # The target of a parent or absolute link could leave the $Dest_dir
  657.         # hierarchy, so let's put all of the contents of $dirlink (actually,
  658.         # the contents of $target) into @ARGV; as a side effect down the
  659.         # line, $dirlink will get created as an _actual_ directory.
  660.         expand_glob($dirlink);
  661.     } else {
  662.         if (-l "$Dest_dir/$dirlink") {
  663.             unlink "$Dest_dir/$dirlink" or
  664.                 print STDERR "Could not remove link $Dest_dir/$dirlink:  $!\n";
  665.         }
  666.  
  667.         if (eval 'symlink($target, "$Dest_dir/$dirlink")') {
  668.             print "Linking $target -> $Dest_dir/$dirlink\n";
  669.  
  670.             # Make sure that the link _links_ to something:
  671.             if (! -e "$Dest_dir/$target") {
  672.                 mkpath("$Dest_dir/$target", 0755) or
  673.                     print STDERR "Could not create $Dest_dir/$target/\n";
  674.             }
  675.         } else {
  676.             print STDERR "Could not symlink $target -> $Dest_dir/$dirlink:  $!\n";
  677.         }
  678.     }
  679. }
  680.  
  681.  
  682. # Push all #included files in $file onto our stack, except for STDIN
  683. # and files we've already processed.
  684. sub queue_includes_from
  685. {
  686.     my ($file)    = @_;
  687.     my $line;
  688.  
  689.     return if ($file eq "-");
  690.  
  691.     open HEADER, $file or return;
  692.         while (defined($line = <HEADER>)) {
  693.             while (/\\$/) { # Handle continuation lines
  694.                 chop $line;
  695.                 $line .= <HEADER>;
  696.             }
  697.  
  698.             if ($line =~ /^#\s*include\s+([<"])(.*?)[>"]/) {
  699.                 my ($delimiter, $new_file) = ($1, $2);
  700.                 # copy the prefix in the quote syntax (#include "x.h") case
  701.                 if ($delimiter eq q{"} && $file =~ m|^(.*)/|) {
  702.                     $new_file = "$1/$new_file";
  703.                 }
  704.                 push(@ARGV, $new_file) unless $Is_converted{$new_file};
  705.             }
  706.         }
  707.     close HEADER;
  708. }
  709.  
  710.  
  711. # Determine include directories; $Config{usrinc} should be enough for (all
  712. # non-GCC?) C compilers, but gcc uses additional include directories.
  713. sub inc_dirs
  714. {
  715.     my $from_gcc    = `LC_ALL=C $Config{cc} -v 2>&1`;
  716.     if( !( $from_gcc =~ s:^Reading specs from (.*?)/specs\b.*:$1/include:s ) )
  717.     { # gcc-4+ :
  718.        $from_gcc   = `LC_ALL=C $Config{cc} -print-search-dirs 2>&1`;
  719.        if ( !($from_gcc =~ s/^install:\s*([^\s]+[^\s\/])([\s\/]*).*$/$1\/include/s) )
  720.        {
  721.            $from_gcc = '';
  722.        };
  723.     };
  724.     length($from_gcc) ? ($from_gcc, $from_gcc . "-fixed", $Config{usrinc}) : ($Config{usrinc});
  725. }
  726.  
  727.  
  728. # Create "_h2ph_pre.ph", if it doesn't exist or was built by a different
  729. # version of h2ph.
  730. sub build_preamble_if_necessary
  731. {
  732.     # Increment $VERSION every time this function is modified:
  733.     my $VERSION     = 2;
  734.     my $preamble    = "$Dest_dir/_h2ph_pre.ph";
  735.  
  736.     # Can we skip building the preamble file?
  737.     if (-r $preamble) {
  738.         # Extract version number from first line of preamble:
  739.         open  PREAMBLE, $preamble or die "Cannot open $preamble:  $!";
  740.             my $line = <PREAMBLE>;
  741.             $line =~ /(\b\d+\b)/;
  742.         close PREAMBLE            or die "Cannot close $preamble:  $!";
  743.  
  744.         # Don't build preamble if a compatible preamble exists:
  745.         return if $1 == $VERSION;
  746.     }
  747.  
  748.     my (%define) = _extract_cc_defines();
  749.  
  750.     open  PREAMBLE, ">$preamble" or die "Cannot open $preamble:  $!";
  751.     print PREAMBLE "# This file was created by h2ph version $VERSION\n";
  752.  
  753.     foreach (sort keys %define) {
  754.         if ($opt_D) {
  755.         print PREAMBLE "# $_=$define{$_}\n";
  756.         }
  757.         if ($define{$_} =~ /^\((.*)\)$/) {
  758.         # parenthesized value:  d=(v)
  759.         $define{$_} = $1;
  760.         }
  761.         if ($define{$_} =~ /^([+-]?(\d+)?\.\d+([eE][+-]?\d+)?)[FL]?$/) {
  762.         # float:
  763.         print PREAMBLE
  764.             "unless (defined &$_) { sub $_() { $1 } }\n\n";
  765.         } elsif ($define{$_} =~ /^([+-]?\d+)U?L{0,2}$/i) {
  766.         # integer:
  767.         print PREAMBLE
  768.             "unless (defined &$_) { sub $_() { $1 } }\n\n";
  769.         } elsif ($define{$_} =~ /^\w+$/) {
  770.         print PREAMBLE
  771.             "unless (defined &$_) { sub $_() { &$define{$_} } }\n\n";
  772.         } else {
  773.         print PREAMBLE
  774.             "unless (defined &$_) { sub $_() { \"",
  775.             quotemeta($define{$_}), "\" } }\n\n";
  776.         }
  777.     }
  778.     close PREAMBLE               or die "Cannot close $preamble:  $!";
  779. }
  780.  
  781.  
  782. # %Config contains information on macros that are pre-defined by the
  783. # system's compiler.  We need this information to make the .ph files
  784. # function with perl as the .h files do with cc.
  785. sub _extract_cc_defines
  786. {
  787.     my %define;
  788.     my $allsymbols  = join " ",
  789.     @Config{'ccsymbols', 'cppsymbols', 'cppccsymbols'};
  790.  
  791.     # Split compiler pre-definitions into `key=value' pairs:
  792.     while ($allsymbols =~ /([^\s]+)=((\\\s|[^\s])+)/g) {
  793.     $define{$1} = $2;
  794.     if ($opt_D) {
  795.         print STDERR "$_:  $1 -> $2\n";
  796.     }
  797.     }
  798.  
  799.     return %define;
  800. }
  801.  
  802.  
  803. 1;
  804.  
  805. ##############################################################################
  806. __END__
  807.  
  808. =head1 NAME
  809.  
  810. h2ph - convert .h C header files to .ph Perl header files
  811.  
  812. =head1 SYNOPSIS
  813.  
  814. B<h2ph [-d destination directory] [-r | -a] [-l] [headerfiles]>
  815.  
  816. =head1 DESCRIPTION
  817.  
  818. I<h2ph>
  819. converts any C header files specified to the corresponding Perl header file
  820. format.
  821. It is most easily run while in /usr/include:
  822.  
  823.     cd /usr/include; h2ph * sys/*
  824.  
  825. or
  826.  
  827.     cd /usr/include; h2ph * sys/* arpa/* netinet/*
  828.  
  829. or
  830.  
  831.     cd /usr/include; h2ph -r -l .
  832.  
  833. The output files are placed in the hierarchy rooted at Perl's
  834. architecture dependent library directory.  You can specify a different
  835. hierarchy with a B<-d> switch.
  836.  
  837. If run with no arguments, filters standard input to standard output.
  838.  
  839. =head1 OPTIONS
  840.  
  841. =over 4
  842.  
  843. =item -d destination_dir
  844.  
  845. Put the resulting B<.ph> files beneath B<destination_dir>, instead of
  846. beneath the default Perl library location (C<$Config{'installsitearch'}>).
  847.  
  848. =item -r
  849.  
  850. Run recursively; if any of B<headerfiles> are directories, then run I<h2ph>
  851. on all files in those directories (and their subdirectories, etc.).  B<-r>
  852. and B<-a> are mutually exclusive.
  853.  
  854. =item -a
  855.  
  856. Run automagically; convert B<headerfiles>, as well as any B<.h> files
  857. which they include.  This option will search for B<.h> files in all
  858. directories which your C compiler ordinarily uses.  B<-a> and B<-r> are
  859. mutually exclusive.
  860.  
  861. =item -l
  862.  
  863. Symbolic links will be replicated in the destination directory.  If B<-l>
  864. is not specified, then links are skipped over.
  865.  
  866. =item -h
  867.  
  868. Put ``hints'' in the .ph files which will help in locating problems with
  869. I<h2ph>.  In those cases when you B<require> a B<.ph> file containing syntax
  870. errors, instead of the cryptic
  871.  
  872.     [ some error condition ] at (eval mmm) line nnn
  873.  
  874. you will see the slightly more helpful
  875.  
  876.     [ some error condition ] at filename.ph line nnn
  877.  
  878. However, the B<.ph> files almost double in size when built using B<-h>.
  879.  
  880. =item -D
  881.  
  882. Include the code from the B<.h> file as a comment in the B<.ph> file.
  883. This is primarily used for debugging I<h2ph>.
  884.  
  885. =item -Q
  886.  
  887. ``Quiet'' mode; don't print out the names of the files being converted.
  888.  
  889. =back
  890.  
  891. =head1 ENVIRONMENT
  892.  
  893. No environment variables are used.
  894.  
  895. =head1 FILES
  896.  
  897.  /usr/include/*.h
  898.  /usr/include/sys/*.h
  899.  
  900. etc.
  901.  
  902. =head1 AUTHOR
  903.  
  904. Larry Wall
  905.  
  906. =head1 SEE ALSO
  907.  
  908. perl(1)
  909.  
  910. =head1 DIAGNOSTICS
  911.  
  912. The usual warnings if it can't read or write the files involved.
  913.  
  914. =head1 BUGS
  915.  
  916. Doesn't construct the %sizeof array for you.
  917.  
  918. It doesn't handle all C constructs, but it does attempt to isolate
  919. definitions inside evals so that you can get at the definitions
  920. that it can translate.
  921.  
  922. It's only intended as a rough tool.
  923. You may need to dicker with the files produced.
  924.  
  925. You have to run this program by hand; it's not run as part of the Perl
  926. installation.
  927.  
  928. Doesn't handle complicated expressions built piecemeal, a la:
  929.  
  930.     enum {
  931.     FIRST_VALUE,
  932.     SECOND_VALUE,
  933.     #ifdef ABC
  934.     THIRD_VALUE
  935.     #endif
  936.     };
  937.  
  938. Doesn't necessarily locate all of your C compiler's internally-defined
  939. symbols.
  940.  
  941. =cut
  942.  
  943.